Skorzystaj z wyszukiwarki lub indeksu alfabetycznego.
Przykłady: pci, /dev/null, functional unit, embedded system, pseudo-tty, nfs.
1 definition found
From The Free On-line Dictionary of Computing (05 January 2017) [foldoc]:
read-eval-print loop
(REPL) A programming structure
within LISP which repeatedly reads a form from the user,
evaluates it, and displays the result.
A read-eval-print loop forms the basis of the Top-Level
shell that programmers of the LISP family of languages
interact with.
In many dialects of LISP a very simple REPL could be
implemented as:
(loop (print (eval (read)))).
(2003-06-23)